SetFontSize
Sets the font size to the characters of the current cell range.
Syntax
expression.SetFontSize(nSize);
expression
- A variable that represents a ApiRange class.
Parameters
Name | Required/Optional | Data type | Default | Description |
---|---|---|---|---|
nSize | Required | number | The font size value measured in points. |
Returns
This method doesn't return any data.
Example
This example sets the font size to the characters of the cell range.
var oWorksheet = Api.GetActiveSheet();
oWorksheet.GetRange("A2").SetValue("2");
var oRange = oWorksheet.GetRange("A1:D5");
oRange.SetFontSize(20);